home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 090 / yase.arc / ERRORS.ASM < prev    next >
Assembly Source File  |  1986-12-13  |  1KB  |  36 lines

  1. ******************************************************************
  2. * COPYRIGHT (C) 1986 by Donald Krantz and James Stanley
  3. * - Note: This is a real, live, actual, registered copyright,
  4. *   and should be treated as such. This source code is from
  5. *   the book "68000 Assembly Language", Krantz and Stanley,
  6. *   Addison-Wesley Publishing Company, Reading, MA, 1986.
  7. *   Permission granted by the authors for non-commercial use
  8. *   in programs released to the public domain, as long as this
  9. *   copyright notice remains attached and visible.
  10. *
  11. *****************************************************************
  12. * Editor error messages
  13.  
  14.     xdef    errors
  15.  
  16. errors:    dc.l    err_0,err_1,err_2,err_3,err_4,err_5,err_6
  17.     dc.l    err_7,err_8,err_9,err_10,err_11,err_12
  18.  
  19. err_0:    dc.b    0
  20. err_1:    dc.b    'Unrecognized Character',0
  21. err_2:    dc.b    'No More Room',0
  22. err_3:    dc.b    'File write error, file not written',0
  23. err_4:    dc.b    'Block not marked.',0
  24. err_5:    dc.b    'File exceeds available memory',0
  25. err_6:    dc.b    'File not found.',0
  26. err_7:    dc.b    'Block Start Marker not set.',0
  27. err_8:    dc.b    'Block End Marker not set.',0
  28. err_9:    dc.b    'Block End Marker preceeds Block Start Marker.',0
  29. err_10:    dc.b    'Block is too large to fit.',0
  30. err_11:    dc.b    'Paste Buffer is empty.',0
  31. err_12: dc.b    'Search string not found.',0
  32.     dc.w    0
  33.  
  34.     end
  35.